body {
  margin: 0;
  padding: 0;
  background: #F7F8FA;
  font-family: 'Inter', Arial, sans-serif;
  color: #222;
  min-height: 100vh;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.logo {
  margin-bottom: 24px;
}
.card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 40px 32px 32px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.card h2 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.card p {
  margin: 0 0 24px 0;
  color: #666;
  font-size: 0.95rem;
}
.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 16px;
  background: #F7F8FA;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.login-btn:hover {
  background: #EEF0F3;
}
    
    .login-btn.shopware
{
	color: #0870FF;
}

.login-btn svg {
  margin-right: 8px;
  vertical-align: middle;
}
.divider {
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: #BBB;
  font-size: 0.9rem;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E5E7EB;
  margin: 0 8px;
}
.terms {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #696A6E;
}
.terms a {
  color: #696A6E;
  text-decoration: underline;
}
.new-account {
  margin-top: 24px;
  font-size: 0.95rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.new-account a {
  color: #0870FF;
  text-decoration: none;
  font-weight: 500;
}
.new-account a:hover {
  text-decoration: underline;
}
footer {
  text-align: center;
  margin-top: 48px;
  color: #888;
  font-size: 0.8rem;
}
footer a {
  color: #888;
  text-decoration: none;
  margin: 0 8px 7px;
  display: inline-block;
}